home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- #ifndef AboutH
- #define AboutH
- //----------------------------------------------------------------------------
- #include <System.hpp>
- #include <Windows.hpp>
- #include <SysUtils.hpp>
- #include <Classes.hpp>
- #include <Graphics.hpp>
- #include <Forms.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Buttons.hpp>
- #include <ExtCtrls.hpp>
- //----------------------------------------------------------------------------
- class TAboutBox : public TForm
- {
- __published:
- TPanel *Panel1;
- TImage *ProgramIcon;
- TLabel *ProductName;
- TLabel *Version;
- TLabel *Copyright;
- TLabel *Comments;
- TButton *OKButton;
- private:
- public:
- virtual __fastcall TAboutBox(TComponent* AOwner);
- };
- //----------------------------------------------------------------------------
- extern PACKAGE TAboutBox *AboutBox;
- //----------------------------------------------------------------------------
- #endif
-